home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / rtdc / test1.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  201 b   |  14 lines

  1. program Test1;
  2.  
  3. uses
  4.   Forms,
  5.   Testuni1 in 'TESTUNI1.PAS' {Form1},
  6.   Login in 'LOGIN.PAS' {LoginForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.